<%@ Page Language="VB" %>
<%@ Import Namespace="System.Data" %>
<%@ Import Namespace="System.Data.SqlClient" %>
<%@ Import Namespace="System.Configuration" %>

<script runat="server">
    Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) 
        Dim DBCon As SqlConnection
        Dim Command As SqlCommand = New SqlCommand()
        Dim OrdersReader As SqlDataReader
        Dim ASyncResult As IAsyncResult

        DBCon = New SqlConnection()
        DBCon.ConnectionString = ConfigurationManager.ConnectionStrings("DSN_NorthWind").ConnectionString

        Command.CommandText = 
                "SELECT TOP 5 Customers.CompanyName, Customers.ContactName, " & 
                "Orders.OrderID, Orders.OrderDate, " & 
                "Orders.RequiredDate, Orders.ShippedDate " & 
                "FROM Orders, Customers " & 
                "WHERE Orders.CustomerID = Customers.CustomerID " & 
                "ORDER BY Customers.CompanyName, Customers.ContactName"
        Command.CommandType = CommandType.Text
        Command.Connection = DBCon

        DBCon.Open()

        ' Uruchomienie procesu asynchronicznego
        ASyncResult = Command.BeginExecuteReader()

        ' Dziki tej ptli gwny wtek czeka na zakoczenie
        ' pracy wykonywanej przez proces asynchroniczny
        While Not ASyncResult.IsCompleted
            ' Upienie biecego wtku na 10 milisekund
            System.Threading.Thread.Sleep(10)
        End While

        ' Pobieranie wynikw wykonania procesu asynchronicznego
        OrdersReader = Command.EndExecuteReader(ASyncResult)

        ' Wywietlanie wynikw na ekranie
        gvOrders.DataSource = OrdersReader
        gvOrders.DataBind()

        ' Zamykanie poczenia
        DBCon.Close()
    End Sub
</script>

<html xmlns="http://www.w3.org/1999/xhtml" >
<head id="Head1" runat="server">
    <title>Odpytywanie</title>
</head>
<body>
    <form id="form1" runat="server">
    <div>
    <asp:GridView ID="gvOrders" runat="server" 
     AutoGenerateColumns="False" Width="100%">
       <Columns>
          <asp:BoundField HeaderText="Nazwa firmy" 
           DataField="CompanyName"></asp:BoundField>
          <asp:BoundField HeaderText="Kontakt" 
           DataField="ContactName"></asp:BoundField>
          <asp:BoundField HeaderText="Data zamwienia" 
           DataField="orderdate" DataFormatString="{0:d}"></asp:BoundField>
          <asp:BoundField HeaderText="Wymagana data dostawy" DataField="requireddate" 
           DataFormatString="{0:d}"></asp:BoundField>
          <asp:BoundField HeaderText="Data dostawy" DataField="shippeddate" 
           DataFormatString="{0:d}"></asp:BoundField>
       </Columns>
    </asp:GridView>
    </div>
    </form>
</body>
</html>
